From ed13686ad624de31154bdb2da781a5bdc6e39b8c Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 6 May 2010 11:12:11 +0100 Subject: [PATCH] xl: fix bash completion Changeset 21263:9a12204ac0e4 changes the output format of "xl help" which bash completion use, so update bash completion to compatible with this. Signed-off-by: Yang Hongyang --- tools/libxl/bash-completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/bash-completion b/tools/libxl/bash-completion index 4b870e6602..15c62654c7 100644 --- a/tools/libxl/bash-completion +++ b/tools/libxl/bash-completion @@ -11,7 +11,7 @@ _xl() xl=xl if [[ $COMP_CWORD == 1 ]] ; then - opts=`${xl} help 2>/dev/null | sed 'n;d' | sed '1,2d' | awk '{print $1}' | sed 's/$/ ,/g'` && COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + opts=`${xl} help 2>/dev/null | sed '1,4d' | awk '{print $1}' | sed 's/$/ ,/g'` && COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 fi -- 2.30.2